home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / Scrolling Panel / CodeWarrior⁄PPC Version / TestScrollDialogNative / TestScrollDialogNative.rsrc / TEXT_128.txt < prev   
Text File  |  1994-07-13  |  901b  |  42 lines

  1. This is my first Native Application for the PowerPC. It consists of a recompiled version of the ScrollDialog library and a VERY crude main shell.
  2.  
  3. Here is some text:
  4.  
  5. /*************************************************************************************************
  6. *
  7. *
  8. *            TestScrollDialogNative.c
  9. *
  10. *            -a skanky Native App for testing PowerPC version of ScrollDialogLib
  11. *
  12. *            13/7/94
  13. *
  14. *
  15. *************************************************************************************************/
  16.  
  17. #include    "ScrollDialog.h"
  18.  
  19.  
  20. #define        kAlertBoxID            128
  21. #define        kTextUserItemID        2
  22. #define        kTextResourceID        128
  23.  
  24. void main(void)
  25. {
  26.     short        aHit;
  27.     
  28.     
  29.  
  30.     InitGraf(&qd.thePort);                                    /* mac toolbox init stuff */
  31.     InitFonts();
  32.     InitWindows();
  33.     InitMenus();
  34.     TEInit();
  35.     InitDialogs(NIL);
  36.     
  37.     SetWatchCursor();
  38.     FlushEvents(everyEvent,0);
  39.  
  40.     aHit = ScrollTextDialog(kAlertBoxID,kTextUserItemID,kTextResourceID);
  41.     
  42. }